home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / xpkgzip_.lha / xpkGZIP / Install next >
Text File  |  1995-08-29  |  460b  |  24 lines

  1. ; Installation script for xpkGZIP.library
  2.  
  3. (transcript "Installing xpkGZIP.library...")
  4.  
  5. (set cputype (+(database "CPU")) )
  6.  
  7. ( if (>=  cputype 68020)
  8.     (set xpkGZIP "xpkGZIP020.library")
  9.     (set xpkGZIP "xpkGZIP000.library")
  10. )
  11.  
  12. (copylib
  13.     (prompt "Install xpkGZIP.library")
  14.     (help @copylib-help)
  15.     (source (cat "LIBS/Compressors/" xpkGZIP) )
  16.     (newname "xpkGZIP.library")
  17.     (dest "libs:Compressors")
  18.     (confirm)
  19. )
  20.  
  21. (set @default-dest "libs:Compressors")
  22.  
  23. (exit)
  24.